ca68f54b4cc8d55cc0b5d0eceb1ab59c3ed85339,domain-controller/src/main/java/org/jboss/as/domain/controller/operations/deployment/DeploymentAddHandler.java,DeploymentAddHandler,DeploymentAddHandler,#ContentRepository#boolean#,89
Before Change
contentValidator.registerValidator(HASH, new ModelTypeValidator(ModelType.BYTES, true));
// existing unmanaged content
contentValidator.registerValidator(ARCHIVE, new ModelTypeValidator(ModelType.BOOLEAN, true));
contentValidator.registerValidator(PATH, new ModelTypeValidator(ModelType.STRING, true));
contentValidator.registerValidator(RELATIVE_TO, new ModelTypeValidator(ModelType.STRING, true));
// content additions
contentValidator.registerValidator(INPUT_STREAM_INDEX, new ModelTypeValidator(ModelType.INT, true));
After Change
public DeploymentAddHandler(final ContentRepository contentRepository, final boolean isMaster) {
this.contentRepository = contentRepository;
this.validator.registerValidator(RUNTIME_NAME, new StringLengthValidator(1, Integer.MAX_VALUE, true, false));
final ParametersValidator contentValidator = new ParametersValidator();
// existing managed content
contentValidator.registerValidator(HASH, new ModelTypeValidator(ModelType.BYTES, true));
// existing unmanaged content
contentValidator.registerValidator(ARCHIVE, new ModelTypeValidator(ModelType.BOOLEAN, true));
contentValidator.registerValidator(PATH, new StringLengthValidator(1, true));
contentValidator.registerValidator(RELATIVE_TO, new ModelTypeValidator(ModelType.STRING, true));
// content additions
contentValidator.registerValidator(INPUT_STREAM_INDEX, new ModelTypeValidator(ModelType.INT, true));
contentValidator.registerValidator(BYTES, new ModelTypeValidator(ModelType.BYTES, true));
contentValidator.registerValidator(URL, new StringLengthValidator(1, true));
this.validator.registerValidator(CONTENT, chain(new ListValidator(new ParametersOfValidator(contentValidator)),
new AbstractParameterValidator() {
@Override
public void validateParameter(String parameterName, ModelNode value) throws OperationFailedException {
validateOnePieceOfContent(value);
}
}));
this.managedContentValidator.registerValidator(HASH, new ModelTypeValidator(ModelType.BYTES));
this.unmanagedContentValidator.registerValidator(ARCHIVE, new ModelTypeValidator(ModelType.BOOLEAN));
this.unmanagedContentValidator.registerValidator(PATH, new StringLengthValidator(1));
this.isMaster = isMaster;
}